aboutsummaryrefslogtreecommitdiff
path: root/src/routes/user/[user]/+page.gql
blob: aa9c86b0f7e3436bfb839d34242ebea7cd7ae69f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query Profile($id: Int!) {
	User(id: $id) {
		badges {
			id
		}

		preferences {
			created_at
			updated_at
			user_id
			pinned_hololive_streams
			hide_missing_badges
			biography
			badge_wall_css
			hide_awc_badges
			pinned_badge_wall_categories
		}
	}
}